home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / CFG.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  551b  |  18 lines

  1. /* +++Date last modified: 17-Nov-1995 */
  2.  
  3. /* =======================================================================
  4.     CFG.h       Configuration file handler.
  5.                 A. Reitsma, Delft, The Netherlands.
  6.                 v1.00  94-07-09  Public Domain.
  7.  ---------------------------------------------------------------------- */
  8.  
  9. struct CfgStrings
  10. {
  11.     char * name ;
  12.     char * data ;
  13. };
  14.  
  15. int CfgRead( char * Filename, struct CfgStrings * CfgInfo );
  16.  
  17. /* ==== CFG.h end ===================================================== */
  18.